home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / M / MacOberon241.cpt / MacOberon 2.4(1) / Server.Tool (.txt) < prev    next >
Oberon Text  |  1992-02-06  |  1KB  |  30 lines

  1. Syntax10.Scn.Fnt
  2. Setting up a mail service:
  3. First, insert user names.  Each user needs a "short name"
  4. used for System.SetUser, and a "long name" that is used
  5. as a destination in sending mail.  The postmaster is
  6. inserted first.  It will receive all mail addressed to unknown
  7. users.
  8.     Users.Insert poma Postmaster
  9.     Users.Insert mf Franz
  10.     Users.Insert au User
  11.     Users.List
  12. __________________________________
  13. Then, start the servers.  The server is given a name
  14. in the NetServer.Start command:
  15.     NetServer.Start Server
  16.     MailServer.Start
  17. The server can now be accessed remotely, if the net is
  18. set up as described in the Net.Tool.  To stop:
  19.     NetServer.Stop
  20.     MailServer.Stop
  21. File servers can be write_protected:
  22.     NetServer.Protect
  23.     NetServer.Unprotect
  24. __________________________________
  25. Send mail by prefixing a text in a viewer with
  26. and a list of registered recipients' "long names".
  27. Access a mailbox by performing System.SetUser
  28. (type short_username / password <return>) and
  29. then executing Net.Mailbox <servername>.
  30.